home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 726-750 / 743 / turbodex / a68k / history.log < prev   
Text File  |  1995-03-18  |  35KB  |  973 lines

  1.        A 6 8 K    M A I N T E N A N C E    H I S T O R Y
  2.  
  3.  
  4. Version 2.71 (Charlie Gibbs, April 16, 1991)
  5.  
  6.     The following bugs in version 2.62 have been corrected:
  7.  
  8.           - Enforcer checks were being generated if command-line
  9.         parameters that took a numeric value had no value or
  10.         the value was invalid.  CalcValue was attempting to
  11.         look up a label in the symbol table, which having not
  12.         been allocated yet was causing a null pointer to be
  13.         dereferenced.  (Patrick Quaid)
  14.  
  15.     The following enhancements have been added:
  16.  
  17.           - Function prototyping has been added.  All function
  18.         prototypes are in a new include file, protos.h, which
  19.         is included by A68kdef.h.  Prototyping can be disabled
  20.         (for compilers which do not support it) by defining
  21.         the symbol __NOPROTO; in this case old-style function
  22.         declarations are generated instead.
  23.  
  24.  
  25. Version 2.70 (Charlie Gibbs, February 25, 1991)
  26.  
  27.     The following bugs in version 2.62 have been corrected:
  28.  
  29.           - The definition of tempstr in WriteSymTab (24 bytes)
  30.         was being overrun in some cases, causing A68k to hang.
  31.         Its length has been increased to MAXLINE.
  32.         (Paul Gittings, John Antonishek)
  33.  
  34.           - If A7 was in a list of registers in the source operand
  35.         of a MOVEM instruction, all registers would be moved
  36.         (i.e. the mask was set to 0xFFFF).  (Risto Kaivola)
  37.  
  38.           - Octal or binary values that set bit 31 were being
  39.         flagged as overflow errors.  (Harvey Taylor)
  40.  
  41.           - ORGs were unnecessarily restricted when the -s flag was
  42.         specified.  Everything should be absolute when S-records
  43.         are generated, and any absolute ORG should be allowed.
  44.  
  45.     The following enhancements have been added:
  46.  
  47.           - A new INCBIN directive has been added.  It takes a
  48.         single operand, a file name whose contents are
  49.         included as is at the current position in the
  50.         object code file.  (Julian Gold, Colin Fox)
  51.  
  52.           - The opcode TTL is now accepted as a synonym for TITLE.
  53.  
  54.           - The file mode in the creat() call in xopen() has been
  55.         changed from 1 to 0644; this provides a reasonable file
  56.         mode when compiled on a Unix system.  (Paul Gittings)
  57.  
  58.           - A new command-line keyword (-g) has been added.  It
  59.         causes all undefined symbols to be treated as XREF.
  60.         (Paul Gittings, Steve Hawtin (who provided the code))
  61.  
  62.           - All initialized fields in opcodes.c have been made global
  63.         for compatibilty with more compilers.  (Steve Hawtin)
  64.  
  65.           - The register list in a MOVEM instruction can now be an
  66.         immediate operand which specifies the actual mask bits.
  67.         (Paul Gittings, who provided the code)
  68.  
  69.           - The default value for the -q option has been changed
  70.         from 10 to 100.
  71.  
  72.  
  73. Version 2.62 (Charlie Gibbs, March 19, 1990)
  74.  
  75.     The following enhancements have been added:
  76.  
  77.           - A new command-line keyword (-m) has been added.
  78.         It must be immediately followed by a number which
  79.         specifies the offset from the beginning of a small
  80.         data section to the base register specified in the
  81.         NEAR directive (defaulting to A4).  If this parameter
  82.         is omitted, the offset defaults to 32768 bytes.  This
  83.         parameter is meaningful only if the NEAR directive
  84.         is used.  (Colin Fox)
  85.  
  86.  
  87. Version 2.61 (Charlie Gibbs, January 11, 1990)
  88.  
  89.     The following bugs in version 2.6 have been corrected:
  90.  
  91.           - ORG and RORG at the beginning of the program were
  92.         being processed incorrectly.  (Jukka Jarvinen)
  93.  
  94.           - A branch instruction to its own label, e.g.
  95.             lab    bra    lab
  96.         would cause phase errors; the instruction was
  97.         being shortened on pass 2 but not on pass 1.
  98.         (Kevin Hoare)
  99.  
  100.     The following enhancements have been added:
  101.  
  102.           - Labels may begin with '@' if the next character
  103.         is not numeric (to avoid confusion with octal
  104.         constants).  (Colin Fox)
  105.  
  106.           - Write errors now cause A68k to terminate gracefully
  107.         with an appropriate error message.
  108.  
  109.  
  110. Version 2.6 (Charlie Gibbs, November 2, 1989)
  111.  
  112.     The following bugs in version 2.5 have been corrected:
  113.  
  114.           - If a space is left between a file keyword and the file name
  115.         (e.g. A68k -l foo.lst foo.asm) the source file was scratched.
  116.         (E. Lenz)
  117.  
  118.           - All code using post-increment addressing in references to
  119.         toupper() has been reworked to avoid post-increment.  Such
  120.         code does not work correctly if toupper() is a macro.
  121.         (John K. Antonishek)
  122.  
  123.           - The spelling of the include files A68kdef.h and A68kglb.h
  124.         has been made correct as to case.  This simplifies porting
  125.         to case-sensitive file systems.  (John K. Antonishek)
  126.  
  127.           - If comments immediately follow the operands of an XDEF,
  128.         XREF, or PUBLIC statement with no intervening white space
  129.         (as in any of the following statements), A68k would hang:
  130.             XDEF    foo;comments
  131.             XREF    bar;comments
  132.             PUBLIC    blah;comments
  133.         (Bruce Dawson)
  134.  
  135.           - Numeric values (any radix) which do not fit into 32 bits
  136.         were not being flagged.  (E. Lenz)
  137.  
  138.           - DC statements with no operands were not being flagged.
  139.         (E. Lenz)
  140.  
  141.           - The -f option was suggesting short branches where the
  142.         displacement would be zero, which is illegal.  (E. Lenz)
  143.  
  144.           - Branches outside the current section had the offset
  145.         set to zero.  (Matt Dillon, who provided a fix)
  146.  
  147.           - ADDI, ANDI, CMPI, EORI, ORI, and SUBI instructions whose
  148.         source operand was not immediate were not being flagged.
  149.         (E. Lenz)
  150.  
  151.           - Unary NOT of a byte or word immediate operand whose value
  152.         was negative was being flagged as a size error.
  153.         (John Aycock)
  154.  
  155.           - All forward branches were rejected when the NEAR
  156.         directive was active.  (Colin Fox)
  157.  
  158.     The following enhancements have been added:
  159.  
  160.           - Single-byte immediate operands (e.g. MOVE.B #-1,(a0))
  161.         are now padded with a high-order byte of zero, rather
  162.         than being sign-extended.  (E. Lenz)
  163.  
  164.           - The message "Error in operand format." has been changed
  165.         to "Addressing mode not allowed here." in places where
  166.         the latter message is more appropriate.
  167.  
  168.           - If the -q option species a value of zero (or no value
  169.         is given, defaulting to zero), all console output will
  170.         be suppressed except for error messages, if any.
  171.         (Matt Dillon)
  172.  
  173.           - The 128-byte restriction on constant length no longer
  174.         applies to the entire code generated by a single DCB
  175.         statement; statements such as
  176.             DCB.L    64,0
  177.         can now be handled.  (Colin Fox)
  178.  
  179.           - Forward branches are now optimized.  The occasional
  180.         instruction may be missed due to ripple effects, but
  181.         this shouldn't happen frequently.  The -f switch
  182.         will flag any such instructions.
  183.  
  184.           - The -d switch can now be followed by an optional
  185.         prefix string (with or without a leading !) which
  186.         specifies which symbols should or should not be
  187.         included in the symbol table dump.  (Lionel Hummel)
  188.  
  189.  
  190. Version 2.5 (Charlie Gibbs, June 18, 1989)
  191.  
  192.     The following bugs in version 2.42 have been corrected:
  193.  
  194.           - Upon normal termination, A68k occasionally crashed in
  195.         quit_cleanup by trying to free the relocation table twice.
  196.         (Jeff Lydiatt and D. McClelland, who worked out a fix)
  197.  
  198.           - MEMF_CHIP and MEMF_FAST bits were being set in the
  199.         hunk length, rather than in the hunk type.  (Richard Man)
  200.  
  201.           - BCHG.L, BCLR.L, BSET.L, and BTST.L were causing
  202.         phase errors.  The test to ignore the .L specification
  203.         (added in version 1.21) was being skipped in pass 1
  204.         by an optimization added in version 2.4.  (David Hankins)
  205.  
  206.           - PC-relative offset to a label was calculated as two bytes
  207.         too great for MOVEM instructions.  (Tony Parkhurst)
  208.  
  209.     The following enhancements have been added:
  210.  
  211.           - If the length code on an opcode is not .B, .W, .L, .S,
  212.         or omitted, it will be flagged as an error.
  213.  
  214.           - JMP.S and JSR.S are flagged as errors.  (Jim Butterfield)
  215.  
  216.           - Operands of the form (xxxx).W and (xxxx).L are now
  217.         supported.  This enables absolute short or absolute
  218.         long addressing to be explicitly specified.
  219.  
  220.           - All optimization can be disabled by the new -n switch.
  221.         (David Hankins)
  222.  
  223.           - The NEAR directive can now take a single operand, which
  224.         can be any address register (or equated symbol) except
  225.         A7.  If omitted, the register defaults to A4.
  226.  
  227.           - Instructions of the form BTST Dn,#nn are no longer
  228.         flagged.  This obscure variant is nonetheless legal.
  229.  
  230.  
  231. Version 2.42 (Charlie Gibbs, January 10, 1989)
  232.  
  233.     The following bugs in version 2.41 have been corrected:
  234.  
  235.           - Small code/data conversion was sometimes taking place
  236.         when no NEAR directive was active.  (Jeff Lydiatt)
  237.  
  238.  
  239. Version 2.41 (Charlie Gibbs, January 6, 1989)
  240.  
  241.     The following bugs in version 2.4 have been corrected:
  242.  
  243.           - The second operand of LINK instructions was
  244.         being erroneously flagged.
  245.  
  246.           - If a macro was used before it was defined, it
  247.         was being expanded during pass 2 but not during
  248.         pass 1, causing severe phase errors.  Attempts
  249.         to use a macro before it is defined will now
  250.         be flagged as invalid opcodes.  (Colin Fox)
  251.  
  252.  
  253. Version 2.4 (Charlie Gibbs, January 4, 1989)
  254.  
  255.     The following bugs in version 2.31 have been corrected:
  256.  
  257.           - If comments immediately followed the operands of
  258.         a DC statement with no intervening white space,
  259.         A68k would hang.  (Ulf Nordquist)
  260.  
  261.           - In the following command:
  262.             a68k -w 15000 myprog.asm
  263.         the space between the -w and 15000 would cause A68k
  264.         to look for a source file called "15000", and to think
  265.         that the object file is to be called "myprog.asm".
  266.         When it can't find "15000" it would display an error
  267.         message and scratch "myprog.asm".  (Jeff Lydiatt)
  268.  
  269.           - If an INCLUDE file that is skipped on pass 2 contains
  270.         a macro call, subsequent uses of \@ (macro sequence
  271.         number are subsequently flagged.  The macro counter
  272.         must be bumped along with the line number when
  273.         skipping an INCLUDE.  (Colin Fox, Harvey Taylor)
  274.  
  275.     The following enhancements have been added:
  276.  
  277.           - ORG and RORG are now fully implemented.
  278.  
  279.           - The SET symbols A68k, a68K, and a68k are defined in the
  280.         same way as A68K, making it effectively case-insensitive.
  281.         (Colin Fox)
  282.  
  283.           - MOVEM and REG now accept equated register names (EQUR)
  284.         in register lists.  (Bruce Dawson)
  285.  
  286.           - INCLUDE files will now be skipped on pass 2 even when
  287.         a listing file is requested, if the listing has been
  288.         turned off by a NOLIST directive before the INCLUDE,
  289.         and is not turned on until after the end of the
  290.         INCLUDE file has been reached.  (Colin Fox)
  291.  
  292.           - A new switch (-f) causes forward branches (Bcc, BRA, BSR)
  293.         that could be coded as short branches (Bcc.S etc.) to be
  294.         flagged.  This flag is not considered to be an error.
  295.  
  296.           - A limited small code / small data model has been provided.
  297.         It is activated by a NEAR directive in the source code, and
  298.         is de-activated by a FAR directive.  External variables
  299.         must be declared at the beginning of the program, which
  300.         must consist of only two sections (CODE and DATA or BSS).
  301.         All forward data references are assumed to be PC-relative
  302.         if in the CODE section, A4-relative if in the DATA/BSS
  303.         section, and absolute word if absolute values.  Any
  304.         forward references which cannot be resolved to one of
  305.         these three in pass 2 will be flagged as errors, as will
  306.         any attempt to define more than two sections.  A4 is
  307.         assumed to point to the start of the DATA/BSS section
  308.         plus 32768 bytes, and must be loaded by a MOVE.L
  309.         instruction using immediate mode unless this instruction
  310.         is not enclosed within NEAR and FAR directives.
  311.  
  312.           - Miscellaneous optimizations, for speed, including:
  313.         Most of the object code generator in pass 1 is bypassed.
  314.         If GetValue gets a single term it takes a short cut.
  315.         IsOperator now uses a table look-up.
  316.         Instructions now only searches that portion of the
  317.         opcode table whose opcodes start with the same letter
  318.         as the OpCode being searched for.
  319.  
  320.  
  321. Version 2.31 (Charlie Gibbs, November 30, 1988)
  322.  
  323.     The following bugs in version 2.3 have been corrected:
  324.  
  325.           - Even though a macro definition was being skipped
  326.         by IFxx/ENDC, its ENDM directive was still being
  327.         detected, causing spurious diagnostics.  (Harvey Taylor)
  328.  
  329.           - NOP was not being recognized.  When moving all
  330.         directives into the opcode table, NOL and NOLIST
  331.         were placed after NOP, rather than before.  (Colin Fox)
  332.  
  333.           - Symbols defined in the current module and declared
  334.         as PUBLIC were not being written to the object code
  335.         file when -d was specified.  (Colin Fox)
  336.  
  337.           - Conversion of 0(An) to (An) (implemented in version
  338.         1.2) was causing errors in the MOVEP instruction,
  339.         which requires a displacement even if it is zero.
  340.         This conversion is now disabled for MOVEP instructions.
  341.  
  342.           -    User macros containing invalid opcodes caused A68k
  343.         to get lost when returning to the outer source file.
  344.         (Colin Fox)
  345.  
  346.           - Large values of -w (over 6000 or so) would cause
  347.         a visit from the Guru.  The work field in HashIt
  348.         was overflowing and going negative.  Changing it
  349.         to unsigned corrected the problem.  (Colin Fox)
  350.  
  351.           - Although user macros are no longer displayed when
  352.         -q is a negative number, the calling file's name
  353.         was still being displayed at the end of the macro.
  354.  
  355.  
  356. Version 2.3 (Charlie Gibbs, November 21, 1988)
  357.  
  358.     The following enhancements have been added:
  359.  
  360.           - All file I/O has been rewritten to use level 1 I/O
  361.         (open, creat, close, read, write, and lseek) instead
  362.         of level 2 I/O.  A68k now does its own buffering and
  363.         unbuffering to reduce system overhead and increase speed.
  364.         (Bruce Dawson)
  365.  
  366.           - All assembler directives have been incorporated into
  367.         the opcode table.  Since the opcode search now looks
  368.         up directives as well, speed is increased.
  369.  
  370.           - Miscellaneous code optimization for additional speed.
  371.  
  372.  
  373. Version 2.2 (Charlie Gibbs, November 4, 1988)
  374.  
  375.     The following bugs in version 2.1 have been corrected:
  376.  
  377.           - Macro definitions within an INCLUDE file were
  378.         disabling the test for skipping the file on pass 2.
  379.  
  380.           - Errors encountered in an INCLUDE file on pass 1
  381.         were not disabling the skip of the file on pass 2 -
  382.         the pertinent error messages could not appear.
  383.  
  384.           - XDEF information and optional symbol table dumps were
  385.         not being written to the object code file for any
  386.         hunks that did not contain relocatable code or data.
  387.         (Colin Fox)
  388.  
  389.     The following enhancements have been added:
  390.  
  391.           - If the -q option is specified as a negative value,
  392.         user macros are no longer included in line number
  393.         displays, reducing clutter.
  394.  
  395.           - Some source code has been re-arranged to reduce size.
  396.  
  397.  
  398. Version 2.1 (Charlie Gibbs, November 1, 1988)
  399.  
  400.     The following bugs in version 2.00 have been corrected:
  401.  
  402.           - Macro definitions that span two chunks of memory
  403.         were causing garbage and probably a crash when
  404.         the macro was being expanded.  Pointers were not
  405.         being handled properly when linking the two chunks.
  406.  
  407.           - Statements such as EQU and SET were not being flagged
  408.         as illegal forward references if referencing a label
  409.         defined on the same line, e.g.
  410.             LABEL    SET    LABEL+1
  411.  
  412.           - The position within macros and INCLUDE files was
  413.         sometimes out by one line when reported in error
  414.         messages (and the new feature of the -q switch).
  415.  
  416.     The following enhancements have been added:
  417.  
  418.           - If the -q option is specified as a negative value,
  419.         line numbers will be displayed as positions within
  420.         the current module (whose name is also displayed),
  421.         rather than a total statement count.  (Bruce Dawson)
  422.  
  423.           - INCLUDE files can be skipped on pass 2 even if they
  424.         contain SET statements - the values of all symbols
  425.         SET in the INCLUDE file are stored (as at the end
  426.         of the file) in a separate table and are patched
  427.         when the INCLUDE file is skipped.  (Bruce Dawson)
  428.  
  429.  
  430. Version 2.00 (Charlie Gibbs, October 26, 1988)
  431.  
  432.     The following bugs in version 1.24 have been corrected:
  433.  
  434.           - The last digit of the statement number display
  435.         (lengthened in version 1.24) was not being erased
  436.         before displaying error messages.
  437.  
  438.           - A68k would go into a loop if a user macro was
  439.         missing an ENDC directive.  This error is now
  440.         flagged (see below).
  441.  
  442.     The following enhancements have been added:
  443.  
  444.           - The highest statement number displayed at the end of
  445.         each pass is now left on the screen.  This means that,
  446.         at the end of pass 1, you can always see how many lines
  447.         A68k will have to process in pass 2, giving an idea of
  448.         how how much longer you have to wait.  (Colin Fox)
  449.  
  450.           - The symbol table is now built using a hashing algorithm.
  451.         This eliminates the slowdown that occurs in pass 1 as
  452.         the symbol table grows, due to the old insertion process.
  453.         (Bruce Dawson)
  454.  
  455.           - If A68k terminates abnormally for any reason (such as
  456.         insufficient memory) the object file is scratched
  457.         (unless the -k option is set).  (Bruce Dawson)
  458.  
  459.           - Any INCLUDE files which cannot be found are flagged
  460.         as errors in pass 1, and the assembly is aborted
  461.         at the end of pass 1.  (Bruce Dawson)
  462.  
  463.           - Missing ENDC directives are flagged in macro expansions.
  464.         Also, missing or unpaired ENDC directives in user macros
  465.         are flagged.
  466.  
  467.           - If an INCLUDE file doesn't generate any code and no
  468.         listing file is required, it won't be read again in
  469.         pass 2.  The statement numbers will be bumped to keep
  470.         in proper alignment.  This can really speed up
  471.         assemblies that INCLUDE lots of equates.  (Colin Fox)
  472.  
  473.  
  474. Version 1.24 (Charlie Gibbs, October 11, 1988)
  475.  
  476.     The following bugs in version 1.23 have been corrected:
  477.  
  478.           - MOVEA to a data register was not being flagged, even
  479.         though all other invalid addressing modes were.
  480.  
  481.           - Attempts to ORG out of the current hunk (including
  482.         to an absolute address) were not being flagged.  (E. Lenz)
  483.  
  484.           - If the size of the bottom of the primary heap (symbols
  485.         and macro text) exceeded 32K, any further macro
  486.         definitions would expand as endless garbage.  (Colin Fox)
  487.  
  488.           - If the size of the bottom of the primary heap (symbols
  489.         and macro text) exceeded 64K, any further external
  490.         symbols (XDEF) would be flagged as relocatability
  491.         errors upon each reference.  (Colin Fox)
  492.  
  493.     The following enhancements have been added:
  494.  
  495.           - Where statement numbers are displayed as fixed-length
  496.         fields, their maximum length has been increased
  497.         from 4 digits to 5.  (Colin Fox)
  498.  
  499.           - The PUBLIC directive has been implemented.
  500.         As with the Aztec assembler, any labels defined as
  501.         PUBLIC will be treated as XDEF if defined within
  502.         the current module, and XREF otherwise.  (Jeff Lydiatt)
  503.  
  504.  
  505. Version 1.23 (Charlie Gibbs, September 20, 1988)
  506.  
  507.     The following bugs in version 1.22 have been corrected:
  508.  
  509.           - The test for a third operand was producing erroneous
  510.         error messages on instructions whose second operand
  511.         was in immediate mode.  The '#' was not being taken
  512.         into account, since it is not copied to DestOp.
  513.  
  514.  
  515. Version 1.22 (Charlie Gibbs, August 31, 1988)
  516.  
  517.     The following bugs in version 1.21 have been corrected:
  518.  
  519.           - Expressions of the form R-A, where R is a relocatable
  520.         term or expression and A is an absolute term or
  521.         expression, were being flagged as relocation errors.
  522.         This was due to a bug in the routine which should
  523.         (but did not) flag expressions of the form A-R.
  524.         (David Ashley)
  525.  
  526.           - Instructions with three operands were not being
  527.         flagged as errors.  This can be caused by an extra
  528.         comma being typed in the instruction, as in:
  529.             BTST #0,state+3,(a5)
  530.         The second comma should not be present.  (David Ashley)
  531.  
  532.     The following enhancements have been added:
  533.  
  534.           - Excess spacing has been removed from the listing file.
  535.         These changes are similar to those already made to the
  536.         console output (probably at about version 1.05).
  537.  
  538.           - If the first statement in the source file is TTL or
  539.         PAGE, an empty page is no longer produced at the
  540.         start of the listing.
  541.  
  542.  
  543. Version 1.21 (Charlie Gibbs, July 29, 1988)
  544.  
  545.     The following bugs in version 1.2 have been corrected:
  546.  
  547.           - The instruction
  548.             BTST.L    #8,D0
  549.         had a long-word value generated for the bit number.
  550.         This bug also applies to BSET, BCLR, and BCHG.
  551.         The .L specification is now ignored.  (Ulf Nordquist)
  552.  
  553.  
  554. Version 1.2 (Charlie Gibbs, July 19, 1988)
  555.  
  556.     The following bugs in version 1.12 have been corrected:
  557.  
  558.           - A reference to the label of the current instruction
  559.         was being converted to PC-relative on pass 2 but not
  560.         on pass 1.  This was causing phase errors.  The label
  561.         hasn't been added to the symbol table at the time the
  562.         instruction is processed.  Conversion to PC-relative
  563.         addressing will now not be attempted in this case,
  564.         although references to * can and will be converted.
  565.  
  566.           - All string-type DC statements, regardless of length,
  567.         were being treated as DC.B.  For example, DC.L 'A'
  568.         would generate only one byte of object code.
  569.         (Gerald Hull)
  570.  
  571.           - DC.W and DC.B statements were not being checked to
  572.         ensure that their values would fit into a word or
  573.         a byte respectively.
  574.  
  575.           - If a comment line had white space preceding the
  576.         asterisk, A68k would hang.  Actually, it was
  577.         interpreting the asterisk as an opcode and trying
  578.         to open a macro file called "*".  Since under
  579.         AmigaDOS such a file is the console, A68k was
  580.         actually waiting for console input.
  581.  
  582.           - If an instruction with no operands (such as RTS
  583.         or NOP) followed MOVE.L #rel,D0 where "rel" was
  584.         a relocatable symbol, the RTS (etc.) would have
  585.         its nonexistent operands flagged as invalid.
  586.  
  587.           - SECTION names enclosed in quotes were not being
  588.         handled correctly.
  589.  
  590.           - Source modules that did not generate any code, data,
  591.         or BSS areas, but only defined symbols, such as
  592.             label    equ    4
  593.                 xdef    label
  594.                 end
  595.         were generating incomplete object modules.
  596.  
  597.     The following enhancements have been added:
  598.  
  599.           - Jeff's experimental hunk code (prefixing hunk names
  600.         with a sequence number before adding to the symbol
  601.         table) has been permanently incorporated.  It seems
  602.         to work better with BLink on programs that have
  603.         hunks continued farther on in the source code.
  604.         (Jeff Lydiatt)
  605.  
  606.           - The macro parameter \0, which is replaced by the
  607.         size specification in the macro call (B, W, or L,
  608.         defaulting to W) is now supported.  (Gerald Hull)
  609.  
  610.           - Operands of the form 0(An) will be treated as (An).
  611.         (Bruce Dawson)
  612.  
  613.  
  614. Version 1.12 (Charlie Gibbs, May 25, 1988)
  615.  
  616.     The following bugs in version 1.11 have been corrected:
  617.  
  618.           - If an instruction with no operands (e.g. RTS)
  619.         followed a MOVE.L #label,D0 the RTS would be
  620.         flagged with a relocatability error.  Src.Mode
  621.         and Dest.Mode were not being cleared.  (Colin Fox)
  622.  
  623.  
  624. Version 1.11 (Charlie Gibbs, April 6, 1988)
  625.  
  626.     The following bugs in version 1.10 have been corrected:
  627.  
  628.           - A68k would go into a loop while processing the
  629.         arguments of a macro call, if these arguments are
  630.         followed by comments separated from the arguments
  631.         by one or more tab characters, and the -t switch
  632.         is specified on the command line.  All tests for
  633.         blanks have been replaced by calls to isspace().
  634.  
  635.           -    The operand alignment checks added in version 1.06
  636.         were erroneously testing the following instructions:
  637.             BCHG
  638.             BCLR
  639.             BSET
  640.             BTST
  641.             NBCD
  642.             Scc
  643.             TAS
  644.         These instructions are now exempt from alignment checking.
  645.  
  646.     The following enhancements have been added:
  647.  
  648.           - A listing file name can now be specified with the
  649.         -x switch; it is no longer necessary to specify
  650.         both the -l and -x switches to produce a cross-
  651.         reference listing with a name other than the default.
  652.  
  653.           - DS statements with more than one operand are
  654.         flagged and ignored (in case they should be DC).
  655.  
  656.           - A character string used as a numeric value is
  657.         flagged and set to zero if it is more than four
  658.         characters long.
  659.  
  660.  
  661. Version 1.10 (Charlie Gibbs, March 20, 1988)
  662.  
  663.     The following bugs in version 1.07 have been corrected:
  664.  
  665.           - BSS sections were not being written to the object
  666.         code file except for a BSS section at the end of
  667.         a program.  This is due to a bug in the code added
  668.         in version 1.05 to overwrite null sections.
  669.  
  670.           - If a source module contained a mixture of lengths
  671.         (8, 16, or 32 bits) in external references (XREF)
  672.         to the same label, all references were being treated
  673.         as if they has the length of the first reference.
  674.  
  675.     The following enhancements have been added:
  676.  
  677.           - DS operands that are either a forward references
  678.         or relocatable are now flagged.
  679.  
  680.           - Short branches (Bcc.S, including BRA and BSR) to
  681.         the next instruction (i.e. a displacement of zero)
  682.         are illegal - the processor takes the displacement
  683.         from the next word.  Attempts to generate a short
  684.         displacement of zero are now flagged.
  685.  
  686.  
  687. Version 1.07 (Charlie Gibbs, March 11, 1988)
  688.  
  689.     The following bugs in version 1.06 have been corrected:
  690.  
  691.           - Instructions that take no operands (such as RTS)
  692.         were being flagged if they had comments that were
  693.         not preceded by a semicolon.
  694.  
  695.     The following enhancements have been added:
  696.  
  697.           - The following synonyms have been added:
  698.             CSEG  for CODE (Aztec compatibility)
  699.             DSEG  for DATA    "          "
  700.             ENDIF for ENDC (Assempro compatibility)
  701.             =     for EQU      "           "
  702.             |     for !        "           "
  703.  
  704.           - Strings and character values may be delimited by
  705.         either apostrophes (') or quotation marks (").
  706.         The character not used as a delimiter can be used
  707.         within the string without doubling it.  For example,
  708.             DC.B    "This is Charlie's assembler"
  709.         produces the same code as
  710.             DC.B    'This is Charlie''s assembler"
  711.  
  712.           - The object code file will be scratched if any errors
  713.         were found, unless the -k (keep) flag is set.
  714.         (Bruce Dawson)
  715.  
  716.           - The symbol .A68K is automatically defined at the
  717.         beginning of each assembly as a SET symbol with an
  718.         absolute value of 1.  This enables programs to check
  719.         whether they're being assembled by this assembler.
  720.         (Jeff Lydiatt)
  721.  
  722.           - The symbol table insertion routine has been
  723.         greatly speeded up.
  724.  
  725.  
  726. Version 1.06 (Charlie Gibbs, March 6, 1988)
  727.  
  728.     The following bugs in version 1.05 have been corrected:
  729.  
  730.           - Lines skipped by IFxx/ENDC were not being counted
  731.         in the line number given in error messages.
  732.  
  733.           - DATA and BSS sections may be unnamed, or have names
  734.         the same as CODE sections.  Honest, I thought section
  735.         names had to be unique even across types.
  736.  
  737.           - CHIP and FAST options on the CODE, DATA, and BSS
  738.         synonyms for the SECTION directive were not being
  739.         handled correctly.
  740.  
  741.           - XDEF records and symbol table records (if desired)
  742.         were not being produced for symbols defined ahead
  743.         of the first object-code producing instruction.
  744.  
  745.     The following enhancements have been added:
  746.  
  747.           - The CNOP instruction can now force alignment
  748.         relative to any boundary up to 128 bytes.
  749.         The second operand must still be a power of 2.
  750.  
  751.           - The -q switch has been added to change the frequency
  752.         with which progress reports (current line number) are
  753.         displayed on the console.  The default remains at
  754.         every 10 lines (-q10).  If you specify -q (no interval)
  755.         or -q0 the line number displays will be suppressed.
  756.         This will make assemblies run slightly faster due to
  757.         reduced console I/O.  (Bill Henning)
  758.  
  759.           - The -t switch has been added to keep any tabs in the
  760.         source file when producing the listing file, as well as
  761.         generating tabs elsewhere whenever possible.  This
  762.         speeds up assemblies and gives smaller listing files,
  763.         but such listing files cannot be displayed on devices
  764.         that do not assume a tab stop in every 8th position.
  765.         (Bruce Dawson)
  766.  
  767.           - Any single-operand instruction with two operands,
  768.         and any no-operand instruction with any operands,
  769.         will be flagged.
  770.  
  771.           - Relocatable 8- or 16-bit immediate operands
  772.         will be flagged.  They blow up BLink.
  773.  
  774.           - Named local labels are now supported.  Their names
  775.         are formed in the same way as normal labels, but are
  776.         then preceded by a backslash.  Their scope is the
  777.         same as normal local labels (nnn$).  (Colin Fox)
  778.  
  779.           - An alignment error will be flagged in the following cases:
  780.             Odd displacement on a LINK instruction
  781.             Bcc or DBcc to an odd address
  782.             In any word or long-word instruction, any operand
  783.               using the following addressing modes:
  784.             Address register indirect with displacement
  785.             Address register indirect with index and displacement
  786.             Absolute short
  787.             Absolute long
  788.             Program counter indirect with displacement
  789.             Program counter indirect with index and displacement
  790.             LEA and PEA instructions are exempt from these tests.
  791.  
  792.           - If a section is found to contain no data, A68k will
  793.         back up to its beginning and overwrite it with the
  794.         next section.  The result is that null sections
  795.         will no longer appear in the object file.
  796.  
  797.  
  798. Version 1.05 (Charlie Gibbs, October 30, 1987)
  799.  
  800.     The following bugs in version 1.04 have been corrected:
  801.  
  802.           - If a section was continued later in the program, e.g.
  803.  
  804.             SECTION    prog,CODE
  805.               <code>
  806.             SECTION    variables,BSS
  807.               <DS statements>
  808.             SECTION    prog,CODE
  809.               <more code>
  810.  
  811.         bad relocation information was being generated for
  812.         the continuation of the SECTION.  This bug was left
  813.         over from version 1.03.
  814.  
  815.     The following enhancements have been added:
  816.  
  817.           - All console output except for error messages is now
  818.         sent to stderr - this enables stdout to be redirected,
  819.         producing an error file.
  820.  
  821.           - Console (stderr) output has been modified to require
  822.         fewer lines on the screen.
  823.  
  824.           - If an error occurs while expanding a macro or INCLUDE
  825.         file, the position of the call in each outer file is
  826.         given along with the position in the current (innermost)
  827.         file.  Tracing continues until the outermost file (i.e.
  828.         the original source file) is reached.
  829.  
  830.  
  831. Version 1.04 (Charlie Gibbs, October 21, 1987)
  832.  
  833.     The following bugs in version 1.03 have been corrected:
  834.  
  835.           - MOVE was being converted to MOVEQ regardless of
  836.         operand size - this conversion is legal only
  837.         for longword MOVEs.
  838.  
  839.           - Modifications to version 1.03 caused bad relocatable
  840.         entries to be generated.
  841.  
  842.  
  843. Version 1.03 (Charlie Gibbs, October 14, 1987)
  844.  
  845.     The following bugs in version 1.02 have been corrected:
  846.  
  847.           - The following situation was causing phase errors:
  848.  
  849.                 xdef    label
  850.                 bra    label
  851.                  .
  852.                 <at least 128 bytes of object code>
  853.                  .
  854.             label:
  855.  
  856.         (The XDEF was fooling A68k into thinking that "label"
  857.         was defined within 128 bytes of the BRA instruction
  858.         on pass 1, although on pass 2 it knew better.
  859.  
  860.           - If the first operand of an two-operand executable
  861.         instruction contained a character term containing a
  862.         left or right parenthesis, it would generate error
  863.         messages and be incorrectly evaluated.
  864.  
  865.           - Labels that don't begin in column 1 (denoted by a
  866.         trailing colon) caused a Guru Meditation.
  867.  
  868.           - Certain ADD and SUB instructions using PC-relative
  869.         addressing may cause phase errors.  If the displacement
  870.         is in the range 1 to 8 inclusive, the instruction was
  871.         erroneously converted to ADDQ or SUBQ during pass 2.
  872.  
  873.     The following enhancements have been added:
  874.  
  875.           - The -z option has been added to display the
  876.         current source program line on stdout as it
  877.         is read, optionally over a given range.
  878.         This feature is provided for debugging purposes.
  879.  
  880.           - Bcc, BSR, and DBcc to labels in other than the current
  881.         section is now supported.  A 16-bit relocation entry
  882.         will be generated for each such reference.
  883.  
  884.           - PC relative mode will be generated for backward
  885.         references to labels within the current CODE section
  886.         if legal for the current instruction.  Forward
  887.         references will not be converted, since there is
  888.         no way of telling which section the label is in
  889.         during pass 1.
  890.  
  891.           - The cumulative sizes of all sections by type (i.e.
  892.         CODE, DATA, and BSS) will be displayed at the end
  893.         of the listing file and the console display.
  894.         (Bruce Dawson)
  895.  
  896.           - In the symbol table dump, section names will no
  897.         longer be indicated just as SECTION, but rather
  898.         as CODE, DATA, or BSS, depending on type.
  899.  
  900.  
  901. Version 1.02 (Charlie Gibbs, September 9, 1987)
  902.  
  903.     The following bugs in version 1.01 have been corrected:
  904.  
  905.           - Duplicate labels were not being flagged.
  906.  
  907.           - XDEF symbols were not being dumped to the
  908.         object code file when the -d option was set.
  909.  
  910.     The following enhancements have been added:
  911.  
  912.           - A header file is now supported.  If the parameter
  913.         -h<filespec> is included on the command line, the
  914.         specified file will be included as if the source
  915.         file's first line was " include <filespec>".
  916.         The file specification may include a path name,
  917.         although the include path names given by the
  918.         -i parameter (if any) will also be searched.
  919.  
  920.           - An equate file can now be produced.  If the parameter
  921.         -e<filespec> is included on the command line, a file
  922.         will be written containing EQU statements for any
  923.         symbol whose value is absolute.  If -e is specified
  924.         without <filespec>, the name of the file will be
  925.         formed in the same way as the list file, except with
  926.         an extension of ".equ".  (Bruce Dawson)
  927.  
  928.     The following changes have been made to existing logic:
  929.  
  930.           - No symbol table dump will be produced unless the
  931.         -x (cross-reference) switch is set.  Formerly a
  932.         symbol table dump was always produced, with only
  933.         the cross-reference portion optional.
  934.  
  935.  
  936. Version 1.01 (Charlie Gibbs, August 20, 1987)
  937.  
  938.     The following bugs in version 1.00 have been corrected:
  939.  
  940.           - Long-word constants and storage areas were being
  941.         aligned on a double-word boundary.  The only place
  942.         where double-word alignment is now forced is at a
  943.         break between SECTIONs, since the length of an
  944.         AmigaDOS hunk must be a multiple of 4 bytes.
  945.         (CNOP 0,4 can still be used if double-word
  946.         alignment is desired by the programmer.)
  947.  
  948.           - If a label on an END statement or the first statement
  949.         of a SECTION was named in an XDEF statement, it would
  950.         not be written to the object code file.  The latter
  951.         case includes both the label of a SECTION directive
  952.         and the label of the first executable instruction in
  953.         the absence of any SECTION directives (defaulting to
  954.         an unnamed CODE section).  In the final case (default
  955.         unnamed CODE section), references to XREF symbols
  956.         in the first statement would also not be written
  957.         to the object code file.
  958.  
  959.           - If the last statement in the source file was not
  960.         terminated with a newline character (premature EOF),
  961.         it was being ignored altogether.
  962.  
  963.           - A register list as the source operand of a MOVE
  964.         instruction was not being flagged as an error.
  965.         (MOVE to a register list was being flagged, however.)
  966.  
  967.           - MOVE from USP was generating incorrect code.  Also,
  968.         MOVE from SR or CCR to an address register was
  969.         generating incorrect code rather than being flagged.
  970.  
  971.  
  972. Version 1.00 (Charlie Gibbs, June 18, 1987) - initial release
  973.